Crate jsonrpsee_ws_client[][src]

Expand description

jsonrpsee-ws-client

jsonrpsee-ws-client is a JSON RPC WebSocket client library that’s is built for async/await.

Runtime support

This library uses tokio as the runtime and does not support other kinds of runtimes. Tokio versions v1 and v0.2 are supported behind tokioV1 and tokioV02 feature flags correspondingly.

Re-exports

pub use client::WsClient;
pub use client::WsClientBuilder;
pub use jsonrpsee_types as types;

Modules

WebSocket Client.

Helpers.

Request manager. Handles and monitors JSONRPC v2 method calls and subscriptions

Stream. Convenience wrapper for a stream (AsyncRead + AsyncWrite) which can either be plain TCP or TLS.

WebSocket transport.